home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / comms / internet / web-related / apache_1.0.5 / cgi-bin / printenv < prev    next >
Text File  |  1996-06-24  |  116b  |  8 lines

  1. #!/bin/perl
  2.  
  3. print "Content-type: text/html\n\n";
  4. while (($key, $val) = each %ENV) {
  5.     print "$key = $val<BR>\n";
  6. }
  7.  
  8.